aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/expenses/layout.tsx
blob: cd65df983cf94f231e225210143706ca2202ed43 (plain)
1
2
3
4
5
6
7
8
9
import { ReactNode } from 'react'

export default function GroupExpensesLayout({
  children,
}: {
  children: ReactNode
}) {
  return <>{children}</>
}